Conditions | 3 |
Total Lines | 12 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 3 |
Changes | 0 |
1 | export interface ReTweetableInterface { |
||
17 | |||
18 | isReTweetable(): boolean { |
||
19 | 26 | const validations = this.getRetweetValidations(); |
|
20 | |||
21 | 26 | for (const validation of validations) { |
|
22 | 127 | if (validation.validate()) { |
|
23 | 17 | this.retweetError = validation.message(); |
|
24 | 17 | return false; |
|
25 | } |
||
26 | } |
||
27 | |||
28 | 9 | return true; |
|
29 | } |
||
31 |